home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2010 Summer - Disc 1 / WN_Ete2010_CD1.iso / Onglet5 / Weezo / Weezo setup.exe / {code_appDir} / www / local / showTransfers.php < prev    next >
PHP Script  |  2010-05-19  |  2KB  |  42 lines

  1. <?php
  2. /**
  3.  * Display transfers list
  4.  *
  5.  *
  6.  * PHP version 5
  7.  *
  8.  * LICENSE: This source file is subject to version 3.0 of the PHP license
  9.  * that is available through the world-wide-web at the following URI:
  10.  * http://www.php.net/license/3_0.txt.  If you did not receive a copy of
  11.  * the PHP License and are unable to obtain it through the web, please
  12.  * send a note to license@php.net so we can mail you a copy immediately.
  13.  *
  14.  * @category   NA
  15.  * @package    NA
  16.  * @author     Nicolas Bruley / Peer 2 World <contact@weezo.net>
  17.  * @copyright  2005-2009 Nicolas Bruley / Peer 2 World
  18.  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  19.  * @version    CVS: $Id:$
  20.  * @link       http://www.weezo.net
  21.  * @since      File available since Release 1.0.0
  22.  */
  23.  
  24. // Initialize script data
  25. require_once('localFunctions.php');
  26. lfInit();
  27. $_SESSION['activeResourceId']=0;
  28.  
  29. require_once(INCLUDE_DIR.'transferFunctions.php');
  30.  
  31. cfInsertHEAD(false);
  32. ?>
  33. <meta icon="globe"></meta>
  34. <meta title="<?php echo cfCaption('activityShowAllTransfers');?>"></meta>
  35. <?php
  36. echo '<body>'.outDivFrame('frame1').'<div class="frame1Header">'.cfCaption('explorerFileTransfer').'</div>';
  37. echo '<br/><br/>';
  38. $nb=tDisplayTransfers(false,false);
  39. echo '</div><br/><br/>';
  40. if($nb) echo '<div style="position:absolute;right:10px;top:10px;">'.outButton(cfCaption('explorerClearFinishedTransferts'),'javascript:tClear(\'all\')',outIcon('eraser')).outButton(cfCaption('genClose'),'javascript:wl.UICommand(\'close\')',outIcon('cancel')).'</div><br/>';
  41. echo '</body></html>';
  42. ?>